home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / PET / S-Super PET / (s)t5.d64 / EDA.STEMLEAF.INF < prev    next >
Text File  |  2009-01-18  |  4KB  |  85 lines

  1.                   stem and leaf displays
  2.                   ``````````````````````
  3.  
  4.  introduction            a stem and leaf display may be regarded as an
  5.                          enhanced histogram in which data values are
  6.                          displayed. the leading digits of the data values
  7.                          comprise the stem and the trailing digits form the
  8.                          leaves. e.g.the value 264 may be displayed as >_
  9.                                  26 M4
  10.                         the values 264 278 264 264 279 as>_
  11.                                  26 M444
  12.                                  27 M89
  13.  
  14.  command syntax         dddd[ data values _create variable dddd
  15.                                            containing data
  16.                         stemleaf dddd     _produces a stem and leaf display
  17.                                            of data values in dddd
  18.                         stemleaf ddddP0.5 _produces a stem and leaf display
  19.                                            of square roots of data in dddd
  20.  
  21.  
  22.  comments               Jthis function will take numeric vectors and arrays
  23.                          as its right argument.  @@@@@@@
  24.  
  25.                         Jthe stem may be scaled and the data values rounded
  26.                          e.g. the data value 36578 may be represented as
  27.                                    36 M6
  28.                          the scaling factor is displayed on output.
  29.  
  30.                         Jthe number of data values comprising a leaf is
  31.                          is given. e.g. 4  36 M6789
  32.  
  33.                         Jdepending on the width of the display, the
  34.                          of both the number of data values displayed and
  35.                          contained in the data set are given
  36.  
  37.  
  38.  parameters            there are three parameters that can be changed by
  39.                        the user >_
  40.                         1.scale :default_ 1" _varies the display depth
  41.                         to alter enter _ scale[2 :say"
  42.                         2.width :default_ 60" _varies the display width
  43.                         3.atom :default _ 10P@8" _avoids zero division
  44.  
  45.  errors                you can achieve errors in the following ways>_
  46.                        Jsubmitting a character vector or array
  47.                                      @@@@@@@@@
  48.                        `fix _ only use numerics
  49.  
  50.                        Jattempting to stemleaf a transformed data set
  51.                         when the transformation generates a domain error
  52.                         e.g. stemleaf 10 dddd  _i.e. log transformation
  53.                         of data in dddd. if dddd contains 0 or negative
  54.                         values a Kdomain errorK will result.
  55.                        `fix _ stemleaf 10 :dddd-1" :say"
  56.                               stemleaf 10 Mdddd
  57.  
  58.  
  59.  errors                Jsetting the width parameter less than the default.
  60.                         :this is because the headings are appended to the 
  61.                          display".
  62.  
  63.                        `fix _ reset width parameter ^ to default value
  64.  
  65.                  PPPP  syntax differences  PPPP
  66.  
  67.  page        mcneilKKs book                   eda package
  68.  @@@@        @@@@@@@@@@@@@@                  @@@@@@@@@@@
  69.  11         let z%islandsY0.5                z[islandsP0 5
  70.  11         let z%log:islands"               z[10 islands
  71.  
  72.   that is, the function KletK is not necessary
  73.  
  74.  
  75.                 PPPP practice PPPP
  76.  
  77.   this workspace contains a data set called KinsectsK :p12,mcneil".
  78.  
  79.   try entering the following commands >_
  80.  
  81.           insects                   _ displays data values in insects
  82.           stemleaf insects
  83.           stemleaf insectsP0.5      _ stemleaf of square roots
  84.           stemleaf insects ;<3 4 5' _ display of cols 3,4,and 5
  85.